home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / ENVIRO.ASM < prev    next >
Assembly Source File  |  1997-01-10  |  335b  |  25 lines

  1. include qlib.inc
  2. include string.inc
  3. include stdio.inc
  4.  
  5. .code
  6. main proc
  7.   mov esi,_environ
  8. @@:
  9.   .if ! bptr[esi]  ;is this the second NULL?
  10.     jmp done
  11.   .endif
  12.   callp printf,"%s\n",esi
  13.   callp strlen,esi
  14.   add esi,eax
  15.   inc esi   ;skip over NULL
  16.   jmp @b
  17. done:
  18.   callp print,"done\n\n"
  19.   ret
  20. main endp
  21.  
  22. end
  23.  
  24.  
  25.